Uses of Interface
edu.claflin.finder.logic.processor.Processable
-
Packages that use Processable Package Description edu.claflin.finder.algo Contains the Algorithm code for finding bipartite subgraphs.edu.claflin.finder.algo.clustering edu.claflin.finder.logic.processor Contains classes related directly to processing. -
-
Uses of Processable in edu.claflin.finder.algo
Classes in edu.claflin.finder.algo that implement Processable Modifier and Type Class Description classAlgorithmAbstraction of the algorithm classes used for finding subgraphs.classBreadthFirstTraversalSearchProcesses aGraphsearching for subgraphs by performing a breadth first search on each node of the graph.classBronKerboschFinds Maximum Cliques and Bicliques with Bron Kersboch Algorithm.classBundleProcesses aGraphsearching for subgraphs.classConnectedComponentsDFSProcesses aGraphsearching for connected components by performing a depth first search on each node.classDepthFirstTraversalSearchProcesses aGraphsearching for bipartite subgraphs by performing a depth first search on each node.classDijkstraShortestPathclassKruskalclassMatrixPatternAnalyzerDeprecated.No replacement yet.classPrimclassShortestPath -
Uses of Processable in edu.claflin.finder.algo.clustering
Classes in edu.claflin.finder.algo.clustering that implement Processable Modifier and Type Class Description classClusteringAlgorithmclassFastGreedyFastGreedu Algorithm https://ece-research.unm.edu/ifis/papers/community-moore.pdfclassGirvanNewmanEdge Betweenness clustering with Girvan Newman Algorithm https://en.wikipedia.org/wiki/Girvan%E2%80%93Newman_algorithmclassWalktrapCommunity detection with the Walktrap Algorithm. -
Uses of Processable in edu.claflin.finder.logic.processor
Methods in edu.claflin.finder.logic.processor with parameters of type Processable Modifier and Type Method Description java.util.ArrayList<java.util.ArrayList<S>>BatchProcessor. processMultiple(T[] toProcess, Processable<T,S> processor)Processes multiple files.java.util.ArrayList<S>BatchProcessor. processSingular(T toProcess, Processable<T,S> processor)Processes a singular object.
-